home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / MW MPW Binaries 1.1.1a2 / mwcPPC / MWCExamples / AboutBox ƒ / main.c < prev   
Encoding:
C/C++ Source or Header  |  1994-06-10  |  329 b   |  22 lines  |  [TEXT/MPCC]

  1. #include "About.h"
  2.  
  3. #ifdef powerc
  4.    static QDGlobals    qd;
  5. #endif
  6.  
  7. void main(void)
  8. {
  9.     InitGraf(&quickdraw_thePort);
  10.     InitFonts();
  11.     FlushEvents(everyEvent - osMask - diskMask, 0);
  12.     InitWindows();
  13.     InitMenus();
  14.     TEInit();
  15.     InitDialogs(0L);
  16.     InitCursor();
  17.  
  18.     MaxApplZone();
  19.     MoreMasters();
  20.  
  21.     DoAboutBox();
  22. }